home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutor.exe
/
SOURCE
/
CPPCOMS.C
< prev
next >
Wrap
Text File
|
1994-05-15
|
453b
|
12 lines
// This is a comment ignored by the compiler
main() // This is another comment ignored by the compiler
{
printf("We are looking at how comments are "); // A C++ comment
// cannot be
// continued on
// another line
printf("used in C.\n");
}
// One more comment for effect